home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-05 | 1.6 KB | 70 lines | [TEXT/MMCC] |
- // CAMReminderData.cp -- document data
- // Created 10/5/95 8:02 PM by AppMaker
-
- // The purpose of the Data module is to shield the rest of your application
- // from your internal data structures and the representation of your files.
- // The Data module provides an abstract interface to the contents of your files.
-
- #include "CAMReminderData.h"
-
- #include "NeoTypes.h"
- #include CNeoIndexIteratorH
- #include CNeoDocNativeH
-
- //----------
- // initialize application data
-
- void CAMReminderData::InitAppData()
- {
- }
-
- // ---------------------------------------------------------------------------
- // • CAMReminderData
- // ---------------------------------------------------------------------------
-
- CAMReminderData::CAMReminderData (CNeoDocRoot* inNeoDoc,
- CNeoDatabaseNative* inDatabase)
- :LBroadcaster()
- {
- mNeoDoc = inNeoDoc;
- mDatabase = inDatabase;
- }
-
- // ---------------------------------------------------------------------------
- // • ~CAMReminderData
- // ---------------------------------------------------------------------------
- // Destructor
- //
-
- CAMReminderData::~CAMReminderData()
- {
- }
-
- //----------
- void CAMReminderData::InitAMReminderData()
- {
- }
-
- //----------
- void CAMReminderData::SetDirty()
- {
- mNeoDoc->setDirty (true);
- }
-
- // The remaining methods are for accessing your data as logical chunks.
- // These are just models for your own accessor functions;
- // they aren't called by any AppMaker-generated code.
- // Replace them with whatever is suitable for your application.
-
- //----------
- void CAMReminderData::GetStuff (void* stuff)
- {
- }
-
- //----------
- void CAMReminderData::SetStuff (void* stuff)
- {
- }
-
- // AMReminderData.cp
-